home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-11-29 | 502 b | 29 lines | [TEXT/MPS ] |
- // Copyright: © 1993 Apple Computer, Inc. All rights reserved.
- // Author: Scott Searle
- // Victor J. Hnyp (extensions)
- // Date: 15-Nov-92
-
- #ifndef __WINDOW__
- #define __WINDOW__
-
- #ifndef __UTILITY__
- #include "Utility.h"
- #endif
-
- typedef long WindowLayerSelector;
-
- typedef struct
- {
- StringSpec wName;
- } WindowSpec, *WindowSpecPtr;
-
- // This defines the Window Context
-
- typedef struct
- {
- long selector; // Function Selector
- long notUsed;
- WindowSpec wSpec;
- } WindowState, *WindowStatePtr;
-
- #endif